Enum HTTPResponseStatusType

java.lang.Object
java.lang.Enum<HTTPResponseStatusType>
com.cisco.pt.ipc.enums.HTTPResponseStatusType
All Implemented Interfaces:
Serializable, Comparable<HTTPResponseStatusType>, Constable

public enum HTTPResponseStatusType extends Enum<HTTPResponseStatusType>
An enum for the IPC's HTTPResponseStatusType values
Author:
packettracerexapps@external.cisco.com
  • Enum Constant Details

    • HTTP_RESPONSE_STATUS_UNSET

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_UNSET
    • HTTP_RESPONSE_STATUS_CONTINUE

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_CONTINUE
    • HTTP_RESPONSE_STATUS_SWITCHING_PROTOCOLS

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_SWITCHING_PROTOCOLS
    • HTTP_RESPONSE_STATUS_OK

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_OK
    • HTTP_RESPONSE_STATUS_CREATED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_CREATED
    • HTTP_RESPONSE_STATUS_ACCEPTED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_ACCEPTED
    • HTTP_RESPONSE_STATUS_NON_AUTHORITATIVE_INFORMATION

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_NON_AUTHORITATIVE_INFORMATION
    • HTTP_RESPONSE_STATUS_NO_CONTENT

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_NO_CONTENT
    • HTTP_RESPONSE_STATUS_RESET_CONTENT

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_RESET_CONTENT
    • HTTP_RESPONSE_STATUS_PARTIAL_CONTENT

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_PARTIAL_CONTENT
    • HTTP_RESPONSE_STATUS_MULTIPLE_CHOICES

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_MULTIPLE_CHOICES
    • HTTP_RESPONSE_STATUS_MOVED_PERMANENTLY

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_MOVED_PERMANENTLY
    • HTTP_RESPONSE_STATUS_FOUND

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_FOUND
    • HTTP_RESPONSE_STATUS_SEE_OTHER

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_SEE_OTHER
    • HTTP_RESPONSE_STATUS_NOT_MODIFIED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_NOT_MODIFIED
    • HTTP_RESPONSE_STATUS_USE_PROXY

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_USE_PROXY
    • HTTP_RESPONSE_STATUS_TEMPORARY_REDIRECT

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_TEMPORARY_REDIRECT
    • HTTP_RESPONSE_STATUS_BAD_REQUEST

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_BAD_REQUEST
    • HTTP_RESPONSE_STATUS_UNAUTHORIZED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_UNAUTHORIZED
    • HTTP_RESPONSE_STATUS_PAYMENT_REQUIRED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_PAYMENT_REQUIRED
    • HTTP_RESPONSE_STATUS_FORBIDDEN

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_FORBIDDEN
    • HTTP_RESPONSE_STATUS_NOT_FOUND

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_NOT_FOUND
    • HTTP_RESPONSE_STATUS_METHOD_NOT_ALLOWED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_METHOD_NOT_ALLOWED
    • HTTP_RESPONSE_STATUS_NOT_ACCEPTABLE

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_NOT_ACCEPTABLE
    • HTTP_RESPONSE_STATUS_PROXY_AUTHENTICATION_REQUIRED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_PROXY_AUTHENTICATION_REQUIRED
    • HTTP_RESPONSE_STATUS_REQUEST_TIME_OUT

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_REQUEST_TIME_OUT
    • HTTP_RESPONSE_STATUS_CONFLICT

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_CONFLICT
    • HTTP_RESPONSE_STATUS_GONE

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_GONE
    • HTTP_RESPONSE_STATUS_LENGTH_REQUIRED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_LENGTH_REQUIRED
    • HTTP_RESPONSE_STATUS_PRECONDITION_FAILED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_PRECONDITION_FAILED
    • HTTP_RESPONSE_STATUS_REQUEST_ENTITY_TOO_LARGE

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_REQUEST_ENTITY_TOO_LARGE
    • HTTP_RESPONSE_STATUS_REQUEST_URITOO_LARGE

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_REQUEST_URITOO_LARGE
    • HTTP_RESPONSE_STATUS_UNSUPPORTED_MEDIA_TYPE

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_UNSUPPORTED_MEDIA_TYPE
    • HTTP_RESPONSE_STATUS_REQUESTEDRANGENOTSATISFIABLE

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_REQUESTEDRANGENOTSATISFIABLE
    • HTTP_RESPONSE_STATUS_EXPECTATION_FAILED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_EXPECTATION_FAILED
    • HTTP_RESPONSE_STATUS_INTERNAL_SERVER_ERROR

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_INTERNAL_SERVER_ERROR
    • HTTP_RESPONSE_STATUS_NOT_IMPLEMENTED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_NOT_IMPLEMENTED
    • HTTP_RESPONSE_STATUS_BAD_GATEWAY

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_BAD_GATEWAY
    • HTTP_RESPONSE_STATUS_SERVICE_UNAVAILABLE

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_SERVICE_UNAVAILABLE
    • HTTP_RESPONSE_STATUS_GATEWAY_TIME_OUT

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_GATEWAY_TIME_OUT
    • HTTP_RESPONSE_STATUS_HTTPVERSIONNOTSUPPORTED

      public static final HTTPResponseStatusType HTTP_RESPONSE_STATUS_HTTPVERSIONNOTSUPPORTED
  • Field Details

    • intValue

      protected int intValue
  • Method Details

    • values

      public static HTTPResponseStatusType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static HTTPResponseStatusType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getIntValue

      public int getIntValue()
    • fromIntValue

      public static HTTPResponseStatusType fromIntValue(int value)
    • fromIntValue

      public static HTTPResponseStatusType fromIntValue(Integer value)